home *** CD-ROM | disk | FTP | other *** search
/ CSi Master: Ableton Live 5 / CSi Master: Ableton Live 5.iso / pc / rsrc / locrsrc / controller.dir / Internal_49_Mute Button Setup.ls < prev    next >
Encoding:
Text File  |  2004-12-29  |  416 b   |  13 lines

  1. on enterFrame me
  2.   global gAllMute
  3.   if gAllMute = 1 then
  4.     if the member of sprite me.spriteNum <> member("sound muted button") then
  5.       set the member of sprite the spriteNum of me to member("sound muted button")
  6.     end if
  7.   else
  8.     if the member of sprite me.spriteNum <> member("sound on button") then
  9.       set the member of sprite the spriteNum of me to member("sound on button")
  10.     end if
  11.   end if
  12. end
  13.